home *** CD-ROM | disk | FTP | other *** search
- /****************************************************************************
- *
- * $Source: /unixb/home/unixlib/source/unixlib37/src/stdio/c/RCS/putc,v $
- * $Date: 1996/04/19 21:32:42 $
- * $Revision: 1.1 $
- * $State: Rel $
- * $Author: simon $
- *
- * $Log: putc,v $
- * Revision 1.1 1996/04/19 21:32:42 simon
- * Initial revision
- *
- ***************************************************************************/
-
- static const char rcs_id[] = "$Id: putc,v 1.1 1996/04/19 21:32:42 simon Rel $";
-
- #include <stdio.h>
-
- __STDIOLIB__
-
- int
- fputc (register int c, register FILE * f)
- {
- return (putc (c, f));
- }
-
- int
- (putc) (register int c, register FILE * f)
- {
- return (fputc (c, f));
- }
-
- int
- (putchar) (register int c)
- {
- return (fputc (c, stdout));
- }
-